Title
x = 'goals'
y = 'shots'
graph1 = figure(title="NHL Data", x_axis_label=x, y_axis_label=y)
months = nhl_player_stats_team_df['birth_month'].unique()
#graph1.circle(nhl_player_stats_team_df[x], nhl_player_stats_team_df[y], legend_label='test')
for month in months:
month_df = nhl_player_stats_team_df[nhl_player_stats_team_df['birth_month'] == month]
graph1.circle(month_df[x], month_df[y], legend_label=month)
graph1.legend.click_policy="hide"
show(graph1)